home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June / DPPCPRO0605A.ISO / Editorial / Programming with Delphi 2005 / Delphi 2005 1 / explorer / exp.pas < prev   
Encoding:
Pascal/Delphi Source File  |  2005-02-23  |  404 b   |  27 lines

  1. unit exp;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  7.   Dialogs, ComCtrls, ShellCtrls;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     ShellTreeView1: TShellTreeView;
  12.     ShellListView1: TShellListView;
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   Form1: TForm1;
  21.  
  22. implementation
  23.  
  24. {$R *.dfm}
  25.  
  26. end.
  27.